home *** CD-ROM | disk | FTP | other *** search
- /*
- ** lcbbs.h -
- ** bbs/modem type functions
- ** Copyright (c) 1988,1991 Information Technology, Ltd.
- ** -- All Rights Reserved --
- */
-
- #ifndef _PPC_EV
- #define _PPC_EV 1
-
- #define online(x) (lc_mstat(x) & DCD)
-
- #ifdef M_I86
- #define setmem(d,c,v) memset(d,v,c)
- #endif
-
- /*
- ** function prototypes
- */
- int check_for_call(unsigned);
- int get_modem_reply(unsigned);
- void disconnect(unsigned);
- int reset_modem(unsigned);
-
- #ifdef M_I86
- void sleep(int);
- #endif
-
- #endif